net/http.http2StreamError.Code (field)

16 uses

	net/http (current package)
		h2_bundle.go#L1239: 	Code     http2ErrCode
		h2_bundle.go#L1249: 	return http2StreamError{StreamID: id, Code: code}
		h2_bundle.go#L1254: 		return fmt.Sprintf("stream error: stream ID %d; %v; %v", e.StreamID, e.Code, e.Cause)
		h2_bundle.go#L1256: 	return fmt.Sprintf("stream error: stream ID %d; %v", e.StreamID, e.Code)
		h2_bundle.go#L5792: 		Code:     http2ErrCodeInternal,
		h2_bundle.go#L7151: 		code = http2ErrCode(e.Code)
		h2_bundle.go#L7826: 		if se.Code == http2ErrCodeProtocol && se.Cause == http2errFromPeer {
		h2_bundle.go#L7830: 		return se.Code == http2ErrCodeRefusedStream
		h2_bundle.go#L8781: 					cc.writeStreamReset(cs.ID, se.Code, err)
		h2_bundle.go#L9566: 			Code:     http2ErrCodeProtocol,
		h2_bundle.go#L9595: 			Code:     http2ErrCodeProtocol,
		h2_bundle.go#L9904: 			Code:     http2ErrCodeProtocol,
		h2_bundle.go#L9912: 			Code:     http2ErrCodeProtocol,
		h2_bundle.go#L9921: 				Code:     http2ErrCodeProtocol,
		h2_bundle.go#L10139: 				Code:     http2ErrCodeFlowControl,
		h2_bundle.go#L10590: 	return ctx.Framer().WriteRSTStream(se.StreamID, se.Code)